home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
51741
/
51741.xpi
/
chrome
/
content
/
lib
/
documents.js
< prev
next >
Wrap
Text File
|
2010-02-01
|
756b
|
31 lines
(function()
{
//returns the current focused document-REVIEW
this.documentGetFocused = function()
{
return window.top.getBrowser().browsers[window.top.getBrowser().mTabBox.selectedIndex].contentDocument;
}
//returns the content of the metadescription of a document
this.documentGetMetaDescription = function(aDoc)
{
var tobj = aDoc.evaluate("//*/meta[@name='DESCRIPTION']|//*/meta[@name='description']", aDoc, null, XPathResult.ANY_TYPE, null);
var metaTag = tobj.iterateNext();
if(metaTag)
{
return metaTag.getAttribute('content');
}
else
{
return '';
}
}
//gets the title of the aTab-REVIEW
this.documentGetTitle = function(aDoc)
{
return String(aDoc.title);
}
return null;
}).apply(metaTitleDescriptionOnTop);